home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_57_switch videoZ = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  1.3 KB  |  30 lines

  1. on mouseEnter
  2.   global gTempThumMember
  3.   set gTempThumMember to the member of sprite 43
  4.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  5.   set the member of sprite 43 to "title" & string(the currentSpriteNum - 30)
  6. end
  7.  
  8. on mouseDown
  9.   global gVideoDuration, gVidVol, gVideoSize
  10.   set the mrate of sprite(7) to 0
  11.   set the member of sprite 7 to "vid" & char 9 of the name of member the member of sprite the currentSpriteNum
  12.   set the member of sprite 34 to "vidThumb40"
  13.   set the member of sprite 35 to "vidThumb50"
  14.   set the member of sprite 36 to "vidThumb60"
  15.   updateStage()
  16.   set the member of sprite the currentSpriteNum to char 1 to 9 of the name of member the member of sprite the currentSpriteNum & "1"
  17.   set gVideoDuration to the duration of member ("vid" & char 9 of the name of member the member of sprite the currentSpriteNum)
  18.   updateStage()
  19.   set the mrate of sprite(7) to 1
  20.   set the volume of sprite 7 to gVidVol
  21. end
  22.  
  23. on mouseLeave
  24.   global gTempThumMember
  25.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  26.   if the last char in the name of member the member of sprite the currentSpriteNum = "0" then
  27.     set the member of sprite 43 to gTempThumMember
  28.   end if
  29. end
  30.